home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / fork.c < prev    next >
C/C++ Source or Header  |  1988-07-29  |  1KB  |  58 lines

  1. /* 
  2.  * fork.c --
  3.  *
  4.  *    Procedure to map from Unix fork system call to Sprite.
  5.  *
  6.  * Copyright (C) 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: fork.c,v 1.2 88/07/29 17:39:25 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "status.h"
  16. #include "proc.h"
  17.  
  18. #include "compatInt.h"
  19.  
  20.  
  21. /*
  22.  *----------------------------------------------------------------------
  23.  *
  24.  * fork --
  25.  *
  26.  *    Procedure to map from Unix fork system call to Sprite Proc_Fork.
  27.  *
  28.  * Results:
  29.  *    UNIX_ERROR is returned upon error, with the actual error code
  30.  *    stored in errno.  Upon success, the value of pid is returned, 
  31.  *    where pid is different for child and parent.  The parent receives
  32.  *    the process id of the child in pid, and the child receives the
  33.  *    value 0.
  34.  *
  35.  * Side effects:
  36.  *    A new process is created.
  37.  *
  38.  *----------------------------------------------------------------------
  39.  */
  40.  
  41. int
  42. fork()
  43. {
  44.     ReturnStatus status;  /* result returned by Proc_Fork */
  45.     int pid;          /* process id of child, or 0, set by Proc_Fork */
  46.  
  47.     /* Fork without sharing the heap. */
  48.     status = Proc_Fork(FALSE, &pid);
  49.     if (status == PROC_CHILD_PROC) {
  50.     return(0);
  51.     }
  52.     if (status != SUCCESS) {
  53.     errno = Compat_MapCode(status);
  54.     return(UNIX_ERROR);
  55.     }
  56.     return((int) pid);
  57. }
  58.